home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetStoryIDList.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  687b  |  35 lines

  1. /*
  2.  *--- PGetStoryIDList.h ---------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetStoryIDList__
  10. #define __PGetStoryIDList__
  11.  
  12. #include "PListQuery.h"
  13. #include "PTextBlock.h"
  14.  
  15. class PGetStoryIDList : public PListQuery
  16. {
  17.  
  18. public:
  19.  
  20.     PGetStoryIDList();
  21.  
  22.     long            nStoryID;
  23.     const char *    fFilename;
  24.     long            nNumChars;
  25.     PTextBlock        textBlock;
  26.  
  27. private:
  28.  
  29.     virtual void Scan();
  30. };
  31.  
  32. #endif
  33.  
  34. // end of PGetStoryIDList.h
  35.